home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / timer_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  791b  |  39 lines

  1. #ifndef  CLIB_TIMER_PROTOS_H
  2. #define  CLIB_TIMER_PROTOS_H
  3.  
  4. /*
  5. **    $VER: timer_protos.h 1.6 (25.1.91)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  DEVICES_TIMER_H
  15. #include <devices/timer.h>
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. void AddTime( struct timeval *dest, struct timeval *src );
  23. void SubTime( struct timeval *dest, struct timeval *src );
  24. LONG CmpTime( struct timeval *dest, struct timeval *src );
  25. ULONG ReadEClock( struct EClockVal *dest );
  26. void GetSysTime( struct timeval *dest );
  27.  
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31.  
  32. #ifdef STORMPRAGMAS
  33. #ifndef _INCLUDE_PRAGMA_TIMER_LIB_H
  34. #include <pragma/timer_lib.h>
  35. #endif
  36. #endif
  37.  
  38. #endif     /* CLIB_TIMER_PROTOS_H */
  39.